3acafe5142b18bf2a0ef0d1db4ad5ef136672eaa,Frameworks/EOAdaptors/JavaMemoryAdaptor/Sources/er/memoryadaptor/EREntityStore.java,EREntityStore,insertRow,#NSDictionary#EOEntity#,256
Before Change
for (Enumeration e = entity.attributes().objectEnumerator(); e.hasMoreElements();) {
EOAttribute attribute = (EOAttribute) e.nextElement();
Object value = row.objectForKey(attribute.name());
if (!attribute.isDerived())
mutableRow.setObjectForKey(value != null ? value : NSKeyValueCoding.NullValue, attribute.columnName());
}
_insertRow(mutableRow, entity);
After Change
for (Enumeration e = entity.attributes().objectEnumerator(); e.hasMoreElements();) {
EOAttribute attribute = (EOAttribute) e.nextElement();
Object value = row.objectForKey(attribute.name());
if (!(attribute.isDerived() || attribute.isReadOnly()))
mutableRow.setObjectForKey(value != null ? value : NSKeyValueCoding.NullValue, attribute.columnName());
}
_insertRow(mutableRow, entity);